## Decoding trials of RS[80,60,21]


from PyM import *


p = 83
K = Zn(83)
n = p-3
a = [element(j,K) for j in range(1,n+1)]

C = RS(a,60)

show(decoder_trial(C,10))



